【例子介绍】C#实例100个,非常全面,有GUI,线程,文件管理,网络等等。。。
非常全面,有GUI,线程,文件管理,网络等等。。。总共有100个实例。。。 初学C#的你不用再头疼,多看实例多动手是很好的学习方法哦。
【相关图片】
【源码结构】
.
├── C# 实例程序
│ ├── 实例001 Hello
│ │ ├── 01.bmp
│ │ ├── HELLO.SLN
│ │ ├── HELLO.SUO
│ │ ├── csc编译器路径.txt
│ │ ├── hello.cs
│ │ └── hello.exe
│ ├── 实例002 Hello XXX
│ │ ├── 02.bmp
│ │ ├── HELLO.SLN
│ │ ├── HELLO.SUO
│ │ ├── hello.cs
│ │ └── hello.exe
│ ├── 实例003 List Argument
│ │ ├── 03.bmp
│ │ ├── listArg0.cs
│ │ ├── listArg0.exe
│ │ ├── listArg0.sln
│ │ └── listArg0.suo
│ ├── 实例004 Predefined Types
│ │ ├── 04.bmp
│ │ ├── predefinedTypes.cs
│ │ └── predefinedTypes.exe
│ ├── 实例005 TypeTrans
│ │ ├── 05.bmp
│ │ ├── typeTrans.cs
│ │ └── typeTrans.exe
│ ├── 实例006 if App
│ │ ├── 06.bmp
│ │ ├── ifApp.cs
│ │ └── ifApp.exe
│ ├── 实例007 switch App
│ │ ├── 07.bmp
│ │ ├── csc编译器路径.txt
│ │ ├── switchApp.cs
│ │ ├── switchApp.exe
│ │ └── switchApp.suo
│ ├── 实例008 for App
│ │ ├── 08.bmp
│ │ ├── forApp.cs
│ │ └── forApp.exe
│ ├── 实例009 while App
│ │ ├── 09.bmp
│ │ ├── whileApp.cs
│ │ └── whileApp.exe
│ ├── 实例010 do-while App
│ │ ├── 10.bmp
│ │ ├── doWhileApp.cs
│ │ └── doWhileApp.exe
│ ├── 实例011 foreach App
│ │ ├── 11.bmp
│ │ ├── foreachApp.cs
│ │ └── foreachApp.exe
│ ├── 实例012 Matrix Multiply(矩阵相乘)
│ │ ├── 12.bmp
│ │ ├── matrixMultiply.cs
│ │ └── matrixMultiply.exe
│ ├── 实例013 Jagged Array(锯齿数组)
│ │ ├── 13.bmp
│ │ ├── jaggedArray.cs
│ │ └── jaggedArray.exe
│ ├── 实例014 enum App
│ │ ├── 14.bmp
│ │ ├── enumApp.cs
│ │ └── enumApp.exe
│ ├── 实例015 bitOpt
│ │ ├── 15.bmp
│ │ ├── bitOpt.cs
│ │ └── bitOpt.exe
│ ├── 实例016 file App
│ │ ├── 16.bmp
│ │ ├── fileApp.cs
│ │ ├── fileApp.exe
│ │ └── myfile.txt
│ ├── 实例017 myClass
│ │ ├── 17.bmp
│ │ ├── myClass.cs
│ │ └── myClass.exe
│ ├── 实例018 rectangle
│ │ ├── 18.bmp
│ │ ├── rectangle.cs
│ │ └── rectangle.exe
│ ├── 实例019 stack App
│ │ ├── 19.bmp
│ │ ├── stackApp.cs
│ │ └── stackApp.exe
│ ├── 实例020 area
│ │ ├── 20.bmp
│ │ ├── area.cs
│ │ └── area.exe
│ ├── 实例021 1st Win App
│ │ ├── 21.bmp
│ │ └── myFirstWinApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── myFirstWinApp.exe
│ │ │ └── myFirstWinApp.pdb
│ │ ├── myFirstWinApp.csproj
│ │ ├── myFirstWinApp.csproj.user
│ │ ├── myFirstWinApp.sln
│ │ ├── myFirstWinApp.suo
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── myFirstWinApp.Form1.resources
│ │ ├── myFirstWinApp.exe
│ │ ├── myFirstWinApp.exe.incr
│ │ ├── myFirstWinApp.pdb
│ │ ├── myFirstWinApp.projdata
│ │ ├── myFirstWinApp.projdata1
│ │ └── temp
│ ├── 实例022 Image View
│ │ ├── 22.bmp
│ │ └── imageView
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── imageView.exe
│ │ │ └── imageView.pdb
│ │ ├── imageView.csproj
│ │ ├── imageView.csproj.user
│ │ ├── imageView.sln
│ │ ├── imageView.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── imageView.Form1.resources
│ │ ├── imageView.exe
│ │ ├── imageView.exe.incr
│ │ ├── imageView.exe.licenses
│ │ ├── imageView.pdb
│ │ ├── imageView.projdata
│ │ ├── imageView.projdata1
│ │ └── temp
│ ├── 实例023 Catch Me
│ │ ├── 23.bmp
│ │ └── catchMe
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── app.config
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── catchMe.exe
│ │ │ ├── catchMe.exe.config
│ │ │ └── catchMe.pdb
│ │ ├── catchMe.csproj
│ │ ├── catchMe.csproj.user
│ │ ├── catchMe.sln
│ │ ├── catchMe.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── catchMe.Form1.resources
│ │ ├── catchMe.exe
│ │ ├── catchMe.exe.incr
│ │ ├── catchMe.exe.licenses
│ │ ├── catchMe.pdb
│ │ ├── catchMe.projdata
│ │ └── temp
│ ├── 实例024 statusApp
│ │ ├── 24.bmp
│ │ └── statusApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── statusApp.exe
│ │ │ └── statusApp.pdb
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── statusApp.Form1.resources
│ │ │ ├── statusApp.exe
│ │ │ ├── statusApp.exe.incr
│ │ │ ├── statusApp.pdb
│ │ │ ├── statusApp.projdata
│ │ │ └── temp
│ │ ├── statusApp.csproj
│ │ ├── statusApp.csproj.user
│ │ ├── statusApp.sln
│ │ └── statusApp.suo
│ ├── 实例025 menu App
│ │ ├── 25.bmp
│ │ └── menuApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── menuApp.exe
│ │ │ └── menuApp.pdb
│ │ ├── licenses.licx
│ │ ├── menuApp.csproj
│ │ ├── menuApp.csproj.user
│ │ ├── menuApp.sln
│ │ ├── menuApp.suo
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── menuApp.Form1.resources
│ │ ├── menuApp.exe
│ │ ├── menuApp.exe.incr
│ │ ├── menuApp.exe.licenses
│ │ ├── menuApp.pdb
│ │ ├── menuApp.projdata
│ │ └── temp
│ ├── 实例026 toolbar App(使用菜单)
│ │ ├── 26.bmp
│ │ └── toolbarApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── toolbarApp.exe
│ │ │ └── toolbarApp.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── toolbarApp.Form1.resources
│ │ │ ├── toolbarApp.exe
│ │ │ ├── toolbarApp.exe.incr
│ │ │ ├── toolbarApp.exe.licenses
│ │ │ ├── toolbarApp.pdb
│ │ │ └── toolbarApp.projdata
│ │ ├── red.jpg
│ │ ├── toolbarApp.csproj
│ │ ├── toolbarApp.csproj.user
│ │ ├── toolbarApp.sln
│ │ └── toolbarApp.suo
│ ├── 实例027 clock
│ │ ├── 27.bmp
│ │ ├── MaskedTextBox
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── BIN
│ │ │ │ └── Debug
│ │ │ │ ├── MaskedTextBox.dll
│ │ │ │ └── MaskedTextBox.pdb
│ │ │ ├── MaskedTextBox.csproj
│ │ │ ├── MaskedTextBox.csproj.user
│ │ │ ├── MaskedTextBox.sln
│ │ │ ├── MaskedTextBox.suo
│ │ │ ├── UserControl1.cs
│ │ │ ├── UserControl1.resx
│ │ │ ├── licenses.licx
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── MaskedTextBox.MaskedTextBox.resources
│ │ │ ├── MaskedTextBox.dll
│ │ │ ├── MaskedTextBox.dll.incr
│ │ │ ├── MaskedTextBox.pdb
│ │ │ ├── MaskedTextBox.projdata
│ │ │ ├── TEMP
│ │ │ └── TempPE
│ │ └── clock
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── clock.exe
│ │ │ └── clock.pdb
│ │ ├── clock.csproj
│ │ ├── clock.csproj.user
│ │ ├── clock.sln
│ │ ├── clock.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── clock.Form1.resources
│ │ ├── clock.exe
│ │ ├── clock.exe.incr
│ │ ├── clock.exe.licenses
│ │ ├── clock.pdb
│ │ ├── clock.projdata
│ │ └── temp
│ ├── 实例028 IP Box
│ │ └── ipBox
│ │ ├── AssemblyInfo.cs
│ │ ├── UserControl1.cs
│ │ ├── UserControl1.resx
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── ipBox.dll
│ │ │ │ └── ipBox.pdb
│ │ │ └── Release
│ │ │ └── ipBox.dll
│ │ ├── ipBox.csproj
│ │ ├── ipBox.csproj.user
│ │ ├── ipBox.sln
│ │ ├── ipBox.suo
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── TempPE
│ │ │ ├── ipBox.dll
│ │ │ ├── ipBox.dll.incr
│ │ │ ├── ipBox.pdb
│ │ │ ├── ipBox.projdata
│ │ │ └── temp
│ │ └── Release
│ │ ├── TempPE
│ │ ├── ipBox.dll
│ │ ├── ipBox.dll.incr
│ │ ├── ipBox.ipBox.resources
│ │ ├── ipBox.projdata
│ │ └── temp
│ ├── 实例029 Use IP Box(使用自己的控件)
│ │ ├── 29.bmp
│ │ └── useIPBox
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ipBox.dll
│ │ │ ├── useIPBox.exe
│ │ │ └── useIPBox.pdb
│ │ ├── ipBox.dll
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useIPBox.Form1.resources
│ │ │ ├── useIPBox.exe
│ │ │ ├── useIPBox.exe.incr
│ │ │ ├── useIPBox.exe.licenses
│ │ │ ├── useIPBox.pdb
│ │ │ └── useIPBox.projdata
│ │ ├── useIPBox.csproj
│ │ ├── useIPBox.csproj.user
│ │ ├── useIPBox.sln
│ │ └── useIPBox.suo
│ ├── 实例030 useTreeView
│ │ ├── 30.bmp
│ │ └── useTreeView
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── useTreeView.exe
│ │ │ └── useTreeView.pdb
│ │ ├── image
│ │ │ ├── CLSDFOLD.ICO
│ │ │ ├── DRIVE.ICO
│ │ │ ├── MYCOMP.ICO
│ │ │ └── OPENFOLD.ICO
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useTreeView.Form1.resources
│ │ │ ├── useTreeView.exe
│ │ │ ├── useTreeView.exe.incr
│ │ │ ├── useTreeView.exe.licenses
│ │ │ ├── useTreeView.pdb
│ │ │ └── useTreeView.projdata
│ │ ├── useTreeView.csproj
│ │ ├── useTreeView.csproj.user
│ │ ├── useTreeView.sln
│ │ └── useTreeView.suo
│ ├── 实例031 FolderBrowser(文件夹浏览器)
│ │ ├── 31.bmp
│ │ └── FolderBrowser
│ │ ├── AssemblyInfo.cs
│ │ ├── FolderBrowser.csproj
│ │ ├── FolderBrowser.csproj.user
│ │ ├── FolderBrowser.sln
│ │ ├── FolderBrowser.suo
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── FolderBrowser.exe
│ │ │ └── FolderBrowser.pdb
│ │ ├── image
│ │ │ ├── CLSDFOLD.ICO
│ │ │ ├── DRIVE.ICO
│ │ │ ├── MYCOMP.ICO
│ │ │ └── OPENFOLD.ICO
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── FolderBrowser.FolderDialog.resources
│ │ ├── FolderBrowser.exe
│ │ ├── FolderBrowser.exe.incr
│ │ ├── FolderBrowser.exe.licenses
│ │ ├── FolderBrowser.pdb
│ │ ├── FolderBrowser.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例032 Progress Bar(使用进度条)
│ │ ├── 32.bmp
│ │ └── progBarApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── progBarApp.exe
│ │ │ └── progBarApp.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── progBarApp.Form1.resources
│ │ │ ├── progBarApp.exe
│ │ │ ├── progBarApp.exe.incr
│ │ │ ├── progBarApp.exe.licenses
│ │ │ ├── progBarApp.pdb
│ │ │ ├── progBarApp.projdata
│ │ │ └── temp
│ │ ├── progBarApp.csproj
│ │ ├── progBarApp.csproj.user
│ │ ├── progBarApp.sln
│ │ └── progBarApp.suo
│ ├── 实例033 control Tip App(使用提示信息)
│ │ ├── 33.bmp
│ │ └── controlTipApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── controlTipApp.exe
│ │ │ └── controlTipApp.pdb
│ │ ├── controlTipApp.csproj
│ │ ├── controlTipApp.csproj.user
│ │ ├── controlTipApp.sln
│ │ ├── controlTipApp.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── controlTipApp.Form1.resources
│ │ ├── controlTipApp.exe
│ │ ├── controlTipApp.exe.incr
│ │ ├── controlTipApp.exe.licenses
│ │ ├── controlTipApp.pdb
│ │ ├── controlTipApp.projdata
│ │ └── temp
│ ├── 实例034 TrayIcon App
│ │ ├── 34.bmp
│ │ ├── TrayApp
│ │ │ ├── AboutDlg.cs
│ │ │ ├── AboutDlg.resx
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Icon1.ico
│ │ │ ├── Icon2.ico
│ │ │ ├── IndiaFlag.ico
│ │ │ ├── TrayApp.csproj
│ │ │ ├── TrayApp.csproj.user
│ │ │ ├── TrayApp.sln
│ │ │ ├── TrayApp.suo
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── TrayApp.exe
│ │ │ │ └── TrayApp.pdb
│ │ │ ├── licenses.licx
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── TrayApp.AboutDlg.resources
│ │ │ ├── TrayApp.TrayForm.resources
│ │ │ ├── TrayApp.exe
│ │ │ ├── TrayApp.exe.incr
│ │ │ ├── TrayApp.exe.licenses
│ │ │ ├── TrayApp.pdb
│ │ │ ├── TrayApp.projdata
│ │ │ └── temp
│ │ └── TrayIconApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── TrayIconApp.csproj
│ │ ├── TrayIconApp.csproj.user
│ │ ├── TrayIconApp.sln
│ │ ├── TrayIconApp.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── TrayIconApp.exe
│ │ │ └── TrayIconApp.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── TrayIconApp.TrayIcon.resources
│ │ ├── TrayIconApp.exe
│ │ ├── TrayIconApp.exe.incr
│ │ ├── TrayIconApp.exe.licenses
│ │ ├── TrayIconApp.pdb
│ │ ├── TrayIconApp.projdata
│ │ └── temp
│ ├── 实例035 No Border App
│ │ ├── 35.bmp
│ │ └── noBorderApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── noBorderApp.exe
│ │ │ └── noBorderApp.pdb
│ │ ├── licenses.licx
│ │ ├── noBorderApp.csproj
│ │ ├── noBorderApp.csproj.user
│ │ ├── noBorderApp.sln
│ │ ├── noBorderApp.suo
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── noBorderApp.Form1.resources
│ │ ├── noBorderApp.exe
│ │ ├── noBorderApp.exe.incr
│ │ ├── noBorderApp.exe.licenses
│ │ ├── noBorderApp.pdb
│ │ ├── noBorderApp.projdata
│ │ └── temp
│ ├── 实例036 MDI Form App(多窗口应用程序)
│ │ ├── 36.bmp
│ │ └── MDIFormApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MDIFormApp.csproj
│ │ ├── MDIFormApp.csproj.user
│ │ ├── MDIFormApp.sln
│ │ ├── MDIFormApp.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── MDIFormApp.exe
│ │ │ └── MDIFormApp.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── MDIFormApp.Form1.resources
│ │ ├── MDIFormApp.exe
│ │ ├── MDIFormApp.exe.incr
│ │ ├── MDIFormApp.exe.licenses
│ │ ├── MDIFormApp.pdb
│ │ ├── MDIFormApp.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例037 floatingForm(漂浮的窗口)
│ │ ├── 37.bmp
│ │ └── floatingForm
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Form2.cs
│ │ ├── Form2.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── floatingForm.exe
│ │ │ └── floatingForm.pdb
│ │ ├── floatingForm.csproj
│ │ ├── floatingForm.csproj.user
│ │ ├── floatingForm.sln
│ │ ├── floatingForm.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── floatingForm.Form1.resources
│ │ ├── floatingForm.exe
│ │ ├── floatingForm.exe.incr
│ │ ├── floatingForm.exe.licenses
│ │ ├── floatingForm.pdb
│ │ ├── floatingForm.projdata
│ │ └── temp
│ ├── 实例038 checklistBox App
│ │ ├── 38.bmp
│ │ └── checklistBoxApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── checklistBoxApp.exe
│ │ │ └── checklistBoxApp.pdb
│ │ ├── checklistBoxApp.csproj
│ │ ├── checklistBoxApp.csproj.user
│ │ ├── checklistBoxApp.sln
│ │ ├── checklistBoxApp.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── checklistBoxApp.Form1.resources
│ │ ├── checklistBoxApp.exe
│ │ ├── checklistBoxApp.exe.incr
│ │ ├── checklistBoxApp.exe.licenses
│ │ ├── checklistBoxApp.pdb
│ │ ├── checklistBoxApp.projdata
│ │ └── temp
│ ├── 实例039 使用日历表
│ │ ├── 39.bmp
│ │ └── testApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── testApp.exe
│ │ │ └── testApp.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── testApp.Form1.resources
│ │ │ ├── testApp.exe
│ │ │ ├── testApp.exe.incr
│ │ │ ├── testApp.exe.licenses
│ │ │ ├── testApp.pdb
│ │ │ └── testApp.projdata
│ │ ├── testApp.csproj
│ │ ├── testApp.csproj.user
│ │ ├── testApp.sln
│ │ └── testApp.suo
│ ├── 实例040 Use Splitter App
│ │ ├── 40.bmp
│ │ ├── jjjj
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ ├── jjjj.csproj
│ │ │ ├── jjjj.csproj.user
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── jjjj.projdata
│ │ │ └── temp
│ │ ├── testApp
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── testApp.exe
│ │ │ │ └── testApp.pdb
│ │ │ ├── licenses.licx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── TempPE
│ │ │ │ ├── temp
│ │ │ │ ├── testApp.Form1.resources
│ │ │ │ ├── testApp.exe
│ │ │ │ ├── testApp.exe.incr
│ │ │ │ ├── testApp.exe.licenses
│ │ │ │ ├── testApp.pdb
│ │ │ │ └── testApp.projdata
│ │ │ ├── testApp.csproj
│ │ │ ├── testApp.csproj.user
│ │ │ ├── testApp.sln
│ │ │ └── testApp.suo
│ │ ├── ttt
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── ttt.exe
│ │ │ │ └── ttt.pdb
│ │ │ ├── licenses.licx
│ │ │ ├── obj
│ │ │ │ └── Debug
│ │ │ │ ├── TempPE
│ │ │ │ ├── temp
│ │ │ │ ├── ttt.Form1.resources
│ │ │ │ ├── ttt.exe
│ │ │ │ ├── ttt.exe.incr
│ │ │ │ ├── ttt.exe.licenses
│ │ │ │ ├── ttt.pdb
│ │ │ │ └── ttt.projdata
│ │ │ ├── ttt.csproj
│ │ │ ├── ttt.csproj.user
│ │ │ ├── ttt.sln
│ │ │ └── ttt.suo
│ │ └── useSplitterApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── useSplitterApp.exe
│ │ │ └── useSplitterApp.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useSplitterApp.Form1.resources
│ │ │ ├── useSplitterApp.exe
│ │ │ ├── useSplitterApp.exe.incr
│ │ │ ├── useSplitterApp.exe.licenses
│ │ │ ├── useSplitterApp.pdb
│ │ │ └── useSplitterApp.projdata
│ │ ├── useSplitterApp.csproj
│ │ ├── useSplitterApp.csproj.user
│ │ ├── useSplitterApp.sln
│ │ └── useSplitterApp.suo
│ ├── 实例041 计算点击次数
│ │ ├── 41.bmp
│ │ ├── diy.cs
│ │ └── diy.exe
│ ├── 实例042 Add Ctrl At Runtime App(动态添加控件)
│ │ ├── 42.bmp
│ │ └── addCtrlAtRuntimeApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── addCtrlAtRuntimeApp.csproj
│ │ ├── addCtrlAtRuntimeApp.csproj.user
│ │ ├── addCtrlAtRuntimeApp.sln
│ │ ├── addCtrlAtRuntimeApp.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── addCtrlAtRuntimeApp.exe
│ │ │ └── addCtrlAtRuntimeApp.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── addCtrlAtRuntimeApp.Form1.resources
│ │ ├── addCtrlAtRuntimeApp.exe
│ │ ├── addCtrlAtRuntimeApp.exe.incr
│ │ ├── addCtrlAtRuntimeApp.exe.licenses
│ │ ├── addCtrlAtRuntimeApp.pdb
│ │ ├── addCtrlAtRuntimeApp.projdata
│ │ └── temp
│ ├── 实例043 Calculator
│ │ ├── 43.bmp
│ │ └── calc
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── calc.exe
│ │ │ └── calc.pdb
│ │ ├── calc.csproj
│ │ ├── calc.csproj.user
│ │ ├── calc.sln
│ │ ├── calc.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── calc.Calculator1.resources
│ │ ├── calc.exe
│ │ ├── calc.exe.incr
│ │ ├── calc.exe.licenses
│ │ ├── calc.pdb
│ │ ├── calc.projdata
│ │ └── temp
│ ├── 实例044 Transparent Window(透明窗口)
│ │ ├── 44.bmp
│ │ └── transparentWindow
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── transparentWindow.exe
│ │ │ └── transparentWindow.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── transparentWindow.Form1.resources
│ │ │ ├── transparentWindow.exe
│ │ │ ├── transparentWindow.exe.incr
│ │ │ ├── transparentWindow.exe.licenses
│ │ │ ├── transparentWindow.pdb
│ │ │ └── transparentWindow.projdata
│ │ ├── transparentWindow.csproj
│ │ ├── transparentWindow.csproj.user
│ │ ├── transparentWindow.sln
│ │ └── transparentWindow.suo
│ ├── 实例045 html Maker(制定网页)
│ │ ├── 45.bmp
│ │ └── htmlMaker
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── htmlMaker.exe
│ │ │ ├── htmlMaker.pdb
│ │ │ ├── lihua.html
│ │ │ └── who a u.html
│ │ ├── htmlMaker.csproj
│ │ ├── htmlMaker.csproj.user
│ │ ├── htmlMaker.sln
│ │ ├── htmlMaker.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── htmlMaker.Form1.resources
│ │ ├── htmlMaker.exe
│ │ ├── htmlMaker.exe.incr
│ │ ├── htmlMaker.exe.licenses
│ │ ├── htmlMaker.pdb
│ │ ├── htmlMaker.projdata
│ │ └── temp
│ ├── 实例046 imageConvert(图像文件格式转换器)
│ │ ├── 46.bmp
│ │ └── imageConvert
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── imageConvert.exe
│ │ │ └── imageConvert.pdb
│ │ ├── imageConvert.csproj
│ │ ├── imageConvert.csproj.user
│ │ ├── imageConvert.sln
│ │ ├── imageConvert.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── imageConvert.Form1.resources
│ │ ├── imageConvert.exe
│ │ ├── imageConvert.exe.incr
│ │ ├── imageConvert.exe.licenses
│ │ ├── imageConvert.pdb
│ │ ├── imageConvert.projdata
│ │ └── temp
│ ├── 实例047 文件内容搜索器
│ │ ├── 47.bmp
│ │ └── mygrep
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── mygrep.exe
│ │ │ └── mygrep.pdb
│ │ ├── licenses.licx
│ │ ├── mygrep.csproj
│ │ ├── mygrep.csproj.user
│ │ ├── mygrep.sln
│ │ ├── mygrep.suo
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── mygrep.Form1.resources
│ │ ├── mygrep.exe
│ │ ├── mygrep.exe.incr
│ │ ├── mygrep.exe.licenses
│ │ ├── mygrep.pdb
│ │ ├── mygrep.projdata
│ │ └── temp
│ ├── 实例048 Display Font(显示字体)
│ │ ├── 48.bmp
│ │ └── displayFont
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── displayFont.exe
│ │ │ └── displayFont.pdb
│ │ ├── displayFont.csproj
│ │ ├── displayFont.csproj.user
│ │ ├── displayFont.sln
│ │ ├── displayFont.suo
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── DisplayFonts.DisplayFonts.resources
│ │ ├── TempPE
│ │ ├── displayFont.exe
│ │ ├── displayFont.exe.incr
│ │ ├── displayFont.exe.licenses
│ │ ├── displayFont.pdb
│ │ ├── displayFont.projdata
│ │ └── temp
│ ├── 实例049 RedAll
│ │ ├── 49.bmp
│ │ ├── RedAll.cs
│ │ ├── RedAll.exe
│ │ └── step.txt
│ ├── 实例050 拼图游戏
│ │ ├── 50.bmp
│ │ └── pingtu
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── pingtu.exe
│ │ │ └── pingtu.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── game.Form1.resources
│ │ │ ├── pingtu.exe
│ │ │ ├── pingtu.exe.incr
│ │ │ ├── pingtu.exe.licenses
│ │ │ ├── pingtu.pdb
│ │ │ ├── pingtu.projdata
│ │ │ └── temp
│ │ ├── pingtu.csproj
│ │ ├── pingtu.csproj.user
│ │ ├── pingtu.sln
│ │ └── pingtu.suo
│ ├── 实例051 Server(端口启动服务)
│ │ ├── 51.bmp
│ │ ├── server.cs
│ │ └── server.exe
│ ├── 实例052 Client(客户端连接)
│ │ ├── 52.bmp
│ │ ├── client.cs
│ │ └── client.exe
│ ├── 实例053 Data Server
│ │ ├── 53.bmp
│ │ ├── DateServer.cs
│ │ └── DateServer.exe
│ ├── 实例054 Data Client
│ │ ├── 54.bmp
│ │ ├── DateClient.cs
│ │ └── DateClient.exe
│ ├── 实例055 Echo Server
│ │ ├── 55.bmp
│ │ ├── EchoServer.cs
│ │ └── EchoServer.exe
│ ├── 实例056 Echo Client
│ │ ├── 56.bmp
│ │ ├── EchoClient.cs
│ │ ├── EchoClient.exe
│ │ ├── back1.gif
│ │ └── back2.gif
│ ├── 实例057 Chat Server
│ │ ├── 57.bmp
│ │ ├── ChatServer.cs
│ │ └── ChatServer.exe
│ ├── 实例058 Chat Client
│ │ ├── 58.bmp
│ │ ├── ChatClient.cs
│ │ └── ChatClient.exe
│ ├── 实例059 Get IP
│ │ ├── 59.bmp
│ │ ├── getIP.cs
│ │ └── getIP.exe
│ ├── 实例060 Get Default Page
│ │ ├── 60.bmp
│ │ ├── GetDefaultPage.cs
│ │ └── GetDefaultPage.exe
│ ├── 实例061 IrcBot
│ │ ├── 61.bmp
│ │ ├── IrcBot.cs
│ │ └── IrcBot.exe
│ ├── 实例062 Get URL Async
│ │ ├── 62.bmp
│ │ ├── GetURLAsync.cs
│ │ └── GetURLAsync.exe
│ ├── 实例063 EMailSender
│ │ ├── 63.bmp
│ │ └── EMailSender
│ │ ├── AssemblyInfo.cs
│ │ ├── EMailSender.csproj
│ │ ├── EMailSender.csproj.user
│ │ ├── EMailSender.sln
│ │ ├── EMailSender.suo
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── EMailSender.exe
│ │ │ └── EMailSender.pdb
│ │ └── obj
│ │ └── Debug
│ │ ├── EMailSender.exe
│ │ ├── EMailSender.exe.incr
│ │ ├── EMailSender.pdb
│ │ ├── EMailSender.projdata
│ │ ├── EMailer.Form1.resources
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例064 Email Notifier(邮件提示器)
│ │ ├── 64.bmp
│ │ ├── EmailNotofier
│ │ │ ├── App.ico
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── EmailNotify.cs
│ │ │ ├── EmailNotify.resx
│ │ │ ├── EmailNotofier.csproj
│ │ │ ├── EmailNotofier.csproj.user
│ │ │ ├── EmailNotofier.sln
│ │ │ ├── EmailNotofier.suo
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── EmailNotofier.exe
│ │ │ │ └── EmailNotofier.pdb
│ │ │ ├── email009.ico
│ │ │ ├── licenses.licx
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── EmailNotofier.EmailNotify.resources
│ │ │ ├── EmailNotofier.Form1.resources
│ │ │ ├── EmailNotofier.exe
│ │ │ ├── EmailNotofier.exe.incr
│ │ │ ├── EmailNotofier.exe.licenses
│ │ │ ├── EmailNotofier.pdb
│ │ │ ├── EmailNotofier.projdata
│ │ │ ├── TempPE
│ │ │ └── temp
│ │ └── email009.ico
│ ├── 实例065 下载提示
│ │ ├── 65.bmp
│ │ ├── doc1.html
│ │ └── webbrowser
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── webbrowser.exe
│ │ │ └── webbrowser.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── webbrowser.Form1.resources
│ │ │ ├── webbrowser.exe
│ │ │ ├── webbrowser.exe.incr
│ │ │ ├── webbrowser.exe.licenses
│ │ │ ├── webbrowser.pdb
│ │ │ └── webbrowser.projdata
│ │ ├── webbrowser.csproj
│ │ ├── webbrowser.csproj.user
│ │ ├── webbrowser.sln
│ │ └── webbrowser.suo
│ ├── 实例066 MyWebServer
│ │ ├── 66.bmp
│ │ ├── Data
│ │ │ ├── Default.Dat
│ │ │ ├── Default.Dat.bak
│ │ │ ├── mime.dat
│ │ │ ├── vdirs.dat
│ │ │ └── vdirs.dat.bak
│ │ ├── MyWebServer.cs
│ │ ├── MyWebServer.exe
│ │ └── MyWebServer2.exe
│ ├── 实例067 Who Is
│ │ ├── 67.bmp
│ │ ├── whois.cs
│ │ └── whois.exe
│ ├── 实例068 Ping
│ │ ├── 68.bmp
│ │ ├── ping.cs
│ │ └── ping.exe
│ ├── 实例069 Chat Server
│ │ ├── 69.bmp
│ │ └── ChatServer
│ │ ├── AssemblyInfo.cs
│ │ ├── ChatServer.csproj
│ │ ├── ChatServer.csproj.user
│ │ ├── ChatServer.sln
│ │ ├── ChatServer.suo
│ │ ├── ChatServerForm.cs
│ │ ├── ChatServerForm.resx
│ │ ├── Client.cs
│ │ ├── CommandProcessor.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ChatServer.exe
│ │ │ └── ChatServer.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── ChatServer.ChatServer.resources
│ │ ├── ChatServer.exe
│ │ ├── ChatServer.exe.incr
│ │ ├── ChatServer.exe.licenses
│ │ ├── ChatServer.pdb
│ │ ├── ChatServer.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例070 Chat Client
│ │ ├── 70.bmp
│ │ └── ChatClient
│ │ ├── AssemblyInfo.cs
│ │ ├── ChatClient.cs
│ │ ├── ChatClient.csproj
│ │ ├── ChatClient.csproj.user
│ │ ├── ChatClient.resx
│ │ ├── ChatClient.sln
│ │ ├── ChatClient.suo
│ │ ├── ChatClient2.cs
│ │ ├── ChatClient2.resx
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ChatClient.exe
│ │ │ ├── ChatClient.pdb
│ │ │ └── logs
│ │ │ ├── 1501020010.txt
│ │ │ ├── 1501020012.txt
│ │ │ └── 1501020148.txt
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── ChatClient.ChatClientForm.resources
│ │ ├── ChatClient.exe
│ │ ├── ChatClient.exe.incr
│ │ ├── ChatClient.exe.licenses
│ │ ├── ChatClient.pdb
│ │ ├── ChatClient.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例071 Use ADO
│ │ ├── 71.bmp
│ │ ├── mctest.mdb
│ │ ├── useADO.cs
│ │ └── useADO.exe
│ ├── 实例072 Use ADO Write Data
│ │ ├── 72.bmp
│ │ ├── mctest.mdb
│ │ ├── useADO.exe
│ │ ├── writeData.cs
│ │ └── writeData.exe
│ ├── 实例073 Read Data
│ │ ├── 73.bmp
│ │ └── readData
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── mctest.mdb
│ │ │ ├── readData.exe
│ │ │ └── readData.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── readData.Form1.resources
│ │ │ ├── readData.exe
│ │ │ ├── readData.exe.incr
│ │ │ ├── readData.exe.licenses
│ │ │ ├── readData.pdb
│ │ │ ├── readData.projdata
│ │ │ └── temp
│ │ ├── readData.csproj
│ │ ├── readData.csproj.user
│ │ ├── readData.sln
│ │ └── readData.suo
│ ├── 实例074 Table Info
│ │ ├── 74.bmp
│ │ └── tableInfo
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── mctest.mdb
│ │ │ ├── tableInfo.exe
│ │ │ └── tableInfo.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── tableInfo.Form1.resources
│ │ │ ├── tableInfo.exe
│ │ │ ├── tableInfo.exe.incr
│ │ │ ├── tableInfo.exe.licenses
│ │ │ ├── tableInfo.pdb
│ │ │ ├── tableInfo.projdata
│ │ │ └── temp
│ │ ├── tableInfo.csproj
│ │ ├── tableInfo.csproj.user
│ │ ├── tableInfo.sln
│ │ └── tableInfo.suo
│ ├── 实例075 useDataGrid
│ │ ├── 75.bmp
│ │ └── useDataGrid
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── mctest.mdb
│ │ │ ├── useDataGrid.exe
│ │ │ └── useDataGrid.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useDataGrid.Form1.resources
│ │ │ ├── useDataGrid.exe
│ │ │ ├── useDataGrid.exe.incr
│ │ │ ├── useDataGrid.exe.licenses
│ │ │ ├── useDataGrid.pdb
│ │ │ └── useDataGrid.projdata
│ │ ├── useDataGrid.csproj
│ │ ├── useDataGrid.csproj.user
│ │ ├── useDataGrid.sln
│ │ └── useDataGrid.suo
│ ├── 实例076 DataTableCompute
│ │ ├── 76.bmp
│ │ └── DataTableCompute
│ │ ├── AssemblyInfo.cs
│ │ ├── Compute.cs
│ │ ├── DBUpLoad.cs
│ │ ├── DataTableCompute.csproj
│ │ ├── DataTableCompute.csproj.user
│ │ ├── DataTableCompute.sln
│ │ ├── DataTableCompute.suo
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── DataTableCompute.exe
│ │ │ ├── DataTableCompute.pdb
│ │ │ └── interest.txt
│ │ ├── interest.txt
│ │ ├── interest1.txt
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── DataTableCompute.Form1.resources
│ │ ├── DataTableCompute.exe
│ │ ├── DataTableCompute.exe.incr
│ │ ├── DataTableCompute.exe.licenses
│ │ ├── DataTableCompute.pdb
│ │ ├── DataTableCompute.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例077 ThreadExample1
│ │ ├── App.ico
│ │ ├── AssemblyInfo.cs
│ │ ├── BIN
│ │ │ └── Debug
│ │ │ ├── 实例77.exe
│ │ │ └── 实例77.pdb
│ │ ├── Class1.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── OBJ
│ │ │ └── Debug
│ │ │ ├── TEMP
│ │ │ ├── TempPE
│ │ │ ├── 实例77.Form1.resources
│ │ │ ├── 实例77.exe
│ │ │ ├── 实例77.exe.incr
│ │ │ ├── 实例77.pdb
│ │ │ └── 实例77.projdata
│ │ ├── 实例77.csproj
│ │ ├── 实例77.csproj.user
│ │ ├── 实例77.sln
│ │ └── 实例77.suo
│ ├── 实例078 ThreadExample2
│ │ ├── 78.bmp
│ │ └── ThreadExample2
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── ThreadExample2.csproj
│ │ ├── ThreadExample2.csproj.user
│ │ ├── ThreadExample2.sln
│ │ ├── ThreadExample2.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ThreadExample2.exe
│ │ │ └── ThreadExample2.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── ThreadExample2.Form1.resources
│ │ ├── ThreadExample2.exe
│ │ ├── ThreadExample2.exe.incr
│ │ ├── ThreadExample2.exe.licenses
│ │ ├── ThreadExample2.pdb
│ │ ├── ThreadExample2.projdata
│ │ ├── startThread.Form1.resources
│ │ └── temp
│ ├── 实例079 ThreadExample3
│ │ ├── 79.bmp
│ │ └── ThreadExample3
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── ThreadExample3.csproj
│ │ ├── ThreadExample3.csproj.user
│ │ ├── ThreadExample3.sln
│ │ ├── ThreadExample3.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ThreadExample3.exe
│ │ │ └── ThreadExample3.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── ThreadExample3.Form1.resources
│ │ ├── ThreadExample3.exe
│ │ ├── ThreadExample3.exe.incr
│ │ ├── ThreadExample3.exe.licenses
│ │ ├── ThreadExample3.pdb
│ │ ├── ThreadExample3.projdata
│ │ └── temp
│ ├── 实例080 ThreadExample4
│ │ ├── 80.bmp
│ │ └── ThreadExample4
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── ThreadExample4.csproj
│ │ ├── ThreadExample4.csproj.user
│ │ ├── ThreadExample4.sln
│ │ ├── ThreadExample4.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ThreadExample4.exe
│ │ │ └── ThreadExample4.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── ThreadExample4.Form1.resources
│ │ ├── ThreadExample4.exe
│ │ ├── ThreadExample4.exe.incr
│ │ ├── ThreadExample4.exe.licenses
│ │ ├── ThreadExample4.pdb
│ │ ├── ThreadExample4.projdata
│ │ └── temp
│ ├── 实例081 ThreadExample5
│ │ ├── 81.bmp
│ │ └── ThreadExample5
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── ThreadExample4.csproj
│ │ ├── ThreadExample4.csproj.user
│ │ ├── ThreadExample4.sln
│ │ ├── ThreadExample4.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── ThreadExample4.exe
│ │ │ └── ThreadExample4.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── ThreadExample4.Form1.resources
│ │ ├── ThreadExample4.exe
│ │ ├── ThreadExample4.exe.incr
│ │ ├── ThreadExample4.exe.licenses
│ │ ├── ThreadExample4.pdb
│ │ ├── ThreadExample4.projdata
│ │ └── temp
│ ├── 实例082 WorkerThread_demo
│ │ ├── 82.bmp
│ │ └── WorkerThread_demo
│ │ ├── AssemblyInfo.cs
│ │ ├── LongProcess.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.resx
│ │ ├── WorkerThread.csproj
│ │ ├── WorkerThread.csproj.user
│ │ ├── WorkerThread.sln
│ │ ├── WorkerThread.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WorkerThread.exe
│ │ │ └── WorkerThread.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── WorkerThread.MainForm.resources
│ │ ├── WorkerThread.exe
│ │ ├── WorkerThread.exe.incr
│ │ ├── WorkerThread.exe.licenses
│ │ ├── WorkerThread.pdb
│ │ ├── WorkerThread.projdata
│ │ └── temp
│ ├── 实例083 All Process
│ │ ├── 83.bmp
│ │ ├── allProcess.cs
│ │ └── allProcess.exe
│ ├── 实例084 Read Reg Data
│ │ ├── 84.bmp
│ │ ├── readRegData.cs
│ │ ├── readRegData.exe
│ │ └── readRegData.reg
│ ├── 实例085 Use Clipboard(使用剪贴板)
│ │ ├── 85.bmp
│ │ └── useClipboard
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── useClipboard.exe
│ │ │ └── useClipboard.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useClipboard.Form1.resources
│ │ │ ├── useClipboard.exe
│ │ │ ├── useClipboard.exe.incr
│ │ │ ├── useClipboard.exe.licenses
│ │ │ ├── useClipboard.pdb
│ │ │ └── useClipboard.projdata
│ │ ├── useClipboard.csproj
│ │ ├── useClipboard.csproj.user
│ │ ├── useClipboard.sln
│ │ └── useClipboard.suo
│ ├── 实例086 Use GDI
│ │ ├── 86.bmp
│ │ └── useGDI
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── useGDI .exe
│ │ │ └── useGDI .pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useGDI .exe
│ │ │ ├── useGDI .exe.incr
│ │ │ ├── useGDI .pdb
│ │ │ ├── useGDI .projdata
│ │ │ └── useGDI_.Form1.resources
│ │ ├── useGDI .csproj
│ │ ├── useGDI .csproj.user
│ │ ├── useGDI .sln
│ │ └── useGDI .suo
│ ├── 实例087 Use Brush
│ │ ├── 87.bmp
│ │ └── useBrush
│ │ ├── AssemblyInfo.cs
│ │ ├── BlueLace16.bmp
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── BlueLace16.bmp
│ │ │ ├── useBrush.exe
│ │ │ └── useBrush.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── temp
│ │ │ ├── useBrush.Form1.resources
│ │ │ ├── useBrush.exe
│ │ │ ├── useBrush.exe.incr
│ │ │ ├── useBrush.exe.licenses
│ │ │ ├── useBrush.pdb
│ │ │ └── useBrush.projdata
│ │ ├── useBrush.csproj
│ │ ├── useBrush.csproj.user
│ │ ├── useBrush.sln
│ │ └── useBrush.suo
│ ├── 实例088 Animat Ball(运动的球)
│ │ ├── 88.bmp
│ │ └── AnimatBall
│ │ ├── AnimatBall.csproj
│ │ ├── AnimatBall.csproj.user
│ │ ├── AnimatBall.sln
│ │ ├── AnimatBall.suo
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── AnimatBall.exe
│ │ │ └── AnimatBall.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── AnimatBall.Form1.resources
│ │ ├── AnimatBall.exe
│ │ ├── AnimatBall.exe.incr
│ │ ├── AnimatBall.exe.licenses
│ │ ├── AnimatBall.pdb
│ │ ├── AnimatBall.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例089 Transform
│ │ ├── 89.bmp
│ │ └── Transform
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Transform.csproj
│ │ ├── Transform.csproj.user
│ │ ├── Transform.sln
│ │ ├── Transform.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Transform.exe
│ │ │ └── Transform.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── Transform.Form1.resources
│ │ ├── Transform.exe
│ │ ├── Transform.exe.incr
│ │ ├── Transform.exe.licenses
│ │ ├── Transform.pdb
│ │ ├── Transform.projdata
│ │ └── temp
│ ├── 实例090 Ratation(旋转的秒针)
│ │ ├── 90.bmp
│ │ └── Ratation
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Ratation.csproj
│ │ ├── Ratation.csproj.user
│ │ ├── Ratation.sln
│ │ ├── Ratation.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Ratation.exe
│ │ │ └── Ratation.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── Ratation.Form1.resources
│ │ ├── Ratation.exe
│ │ ├── Ratation.exe.incr
│ │ ├── Ratation.exe.licenses
│ │ ├── Ratation.pdb
│ │ ├── Ratation.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例091 Animate Picture(模拟播放动画)
│ │ ├── 91.bmp
│ │ └── AnimatePicture
│ │ ├── AnimatePicture.csproj
│ │ ├── AnimatePicture.csproj.user
│ │ ├── AnimatePicture.sln
│ │ ├── AnimatePicture.suo
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── AnimatePicture.exe
│ │ │ ├── AnimatePicture.pdb
│ │ │ ├── Blue Lace 16.bmp
│ │ │ ├── Coffee Bean.bmp
│ │ │ ├── FeatherTexture.bmp
│ │ │ ├── Gone Fishing.bmp
│ │ │ ├── Greenstone.bmp
│ │ │ ├── Prairie Wind.bmp
│ │ │ ├── Rhododendron.bmp
│ │ │ ├── River Sumida.bmp
│ │ │ ├── Santa Fe Stucco.bmp
│ │ │ └── Soap Bubbles.bmp
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── AnimatePicture.Form1.resources
│ │ ├── AnimatePicture.exe
│ │ ├── AnimatePicture.exe.incr
│ │ ├── AnimatePicture.exe.licenses
│ │ ├── AnimatePicture.pdb
│ │ ├── AnimatePicture.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例092 Shape Form
│ │ ├── 92.bmp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MyMessageFilter.cs
│ │ ├── ShapedForm
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── ShapedForm.csproj
│ │ │ ├── ShapedForm.csproj.user
│ │ │ ├── ShapedForm.sln
│ │ │ ├── ShapedForm.suo
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── ShapedForm.exe
│ │ │ │ └── ShapedForm.pdb
│ │ │ ├── licenses.licx
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── ShapedForm.Form1.resources
│ │ │ ├── ShapedForm.exe
│ │ │ ├── ShapedForm.exe.incr
│ │ │ ├── ShapedForm.exe.licenses
│ │ │ ├── ShapedForm.pdb
│ │ │ ├── ShapedForm.projdata
│ │ │ ├── TempPE
│ │ │ └── temp
│ │ ├── WinApp.csproj
│ │ ├── WinApp.csproj.user
│ │ ├── WinApp.sln
│ │ ├── WinApp.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── CDAudio.jpg
│ │ │ ├── CDOver.jpg
│ │ │ ├── Circle.jpg
│ │ │ ├── CircleOver.jpg
│ │ │ ├── Playing.jpg
│ │ │ ├── PlayingOver.jpg
│ │ │ ├── PlayingUp.jpg
│ │ │ ├── StopBut.jpg
│ │ │ ├── StopButNormal.jpg
│ │ │ ├── StopButOver.jpg
│ │ │ ├── WinApp.exe
│ │ │ ├── WinApp.pdb
│ │ │ ├── buttonNormal.jpg
│ │ │ ├── buttonOver2.jpg
│ │ │ ├── hotc1.jpg
│ │ │ ├── hotc2.jpg
│ │ │ ├── hotc3.jpg
│ │ │ ├── hotc4.jpg
│ │ │ ├── hotc5.jpg
│ │ │ ├── hotc6.jpg
│ │ │ ├── hotc7.jpg
│ │ │ ├── hotc8.jpg
│ │ │ └── mediaPlayer.jpg
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── WinApp.Form1.resources
│ │ ├── WinApp.exe
│ │ ├── WinApp.exe.incr
│ │ ├── WinApp.exe.licenses
│ │ ├── WinApp.pdb
│ │ ├── WinApp.projdata
│ │ └── temp
│ ├── 实例093 WinApp
│ │ ├── 93.bmp
│ │ └── WinApp
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MyMessageFilter.cs
│ │ ├── WinApp.csproj
│ │ ├── WinApp.csproj.user
│ │ ├── WinApp.sln
│ │ ├── WinApp.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── CDAudio.jpg
│ │ │ ├── CDOver.jpg
│ │ │ ├── Circle.jpg
│ │ │ ├── CircleOver.jpg
│ │ │ ├── Playing.jpg
│ │ │ ├── PlayingOver.jpg
│ │ │ ├── PlayingUp.jpg
│ │ │ ├── StopBut.jpg
│ │ │ ├── StopButNormal.jpg
│ │ │ ├── StopButOver.jpg
│ │ │ ├── WinApp.exe
│ │ │ ├── WinApp.pdb
│ │ │ ├── buttonNormal.jpg
│ │ │ ├── buttonOver2.jpg
│ │ │ ├── hotc1.jpg
│ │ │ ├── hotc2.jpg
│ │ │ ├── hotc3.jpg
│ │ │ ├── hotc4.jpg
│ │ │ ├── hotc5.jpg
│ │ │ ├── hotc6.jpg
│ │ │ ├── hotc7.jpg
│ │ │ ├── hotc8.jpg
│ │ │ └── mediaPlayer.jpg
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ ├── WinApp.Form1.resources
│ │ ├── WinApp.exe
│ │ ├── WinApp.exe.incr
│ │ ├── WinApp.exe.licenses
│ │ ├── WinApp.pdb
│ │ ├── WinApp.projdata
│ │ └── temp
│ ├── 实例094 Puker(翻牌游戏)
│ │ ├── 94.bmp
│ │ └── puker
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── puker.exe
│ │ │ └── puker.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── puker.Form1.resources
│ │ │ ├── puker.exe
│ │ │ ├── puker.exe.incr
│ │ │ ├── puker.exe.licenses
│ │ │ ├── puker.pdb
│ │ │ ├── puker.projdata
│ │ │ └── temp
│ │ ├── puker.csproj
│ │ ├── puker.csproj.user
│ │ ├── puker.sln
│ │ └── puker.suo
│ ├── 实例095 Puker(翻牌游戏)
│ │ ├── 95.bmp
│ │ └── puker
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── puker.exe
│ │ │ └── puker.pdb
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── puker.Form1.resources
│ │ │ ├── puker.exe
│ │ │ ├── puker.exe.incr
│ │ │ ├── puker.exe.licenses
│ │ │ ├── puker.pdb
│ │ │ ├── puker.projdata
│ │ │ └── temp
│ │ ├── puker.csproj
│ │ ├── puker.csproj.user
│ │ ├── puker.sln
│ │ └── puker.suo
│ ├── 实例096 tic_model(三点一线游戏)
│ │ ├── 96.bmp
│ │ ├── tic_model.cs
│ │ ├── tic_viewcontroller.cs
│ │ └── tic_viewcontroller.exe
│ ├── 实例097 EaterGame(吃豆子游戏)
│ │ ├── 97.bmp
│ │ ├── AssemblyInfo.cs
│ │ ├── Eater.cs
│ │ ├── EaterGame.gif
│ │ ├── EaterKeyPress.gif
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── Initial Class Diagram.gif
│ │ ├── RevErr.txt
│ │ ├── Score.cs
│ │ ├── Stone.cs
│ │ ├── TimerDisplay.cs
│ │ ├── UMLPackman.omt
│ │ ├── WindowsApplication22.csproj
│ │ ├── WindowsApplication22.csproj.user
│ │ ├── WindowsApplication22.sln
│ │ ├── WindowsApplication22.suo
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── WindowsApplication22.exe
│ │ │ ├── WindowsApplication22.pdb
│ │ │ ├── eater.gif
│ │ │ ├── eater2.gif
│ │ │ ├── hit.wav
│ │ │ └── stone.gif
│ │ ├── licenses.licx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── TempPE
│ │ │ ├── WindowsApplication22.Form1.resources
│ │ │ ├── WindowsApplication22.exe
│ │ │ ├── WindowsApplication22.exe.incr
│ │ │ ├── WindowsApplication22.exe.licenses
│ │ │ ├── WindowsApplication22.pdb
│ │ │ ├── WindowsApplication22.projdata
│ │ │ └── temp
│ │ └── stone.gif
│ ├── 实例098 MasterMind
│ │ ├── 98.bmp
│ │ └── MasterMind
│ │ ├── AssemblyInfo.cs
│ │ ├── Board.cs
│ │ ├── ColorPanel.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── MasterMind.csproj
│ │ ├── MasterMind.csproj.user
│ │ ├── MasterMind.sln
│ │ ├── MasterMind.suo
│ │ ├── MasterMind.vsd
│ │ ├── Mastermind.WC
│ │ ├── Mastermind.omt
│ │ ├── RevErr.txt
│ │ ├── ScoreBoard.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── MasterMind.exe
│ │ │ └── MasterMind.pdb
│ │ ├── licenses.licx
│ │ └── obj
│ │ └── Debug
│ │ ├── MasterMind.Form1.resources
│ │ ├── MasterMind.exe
│ │ ├── MasterMind.exe.incr
│ │ ├── MasterMind.exe.licenses
│ │ ├── MasterMind.pdb
│ │ ├── MasterMind.projdata
│ │ ├── TempPE
│ │ └── temp
│ ├── 实例099 GraphicsCopyright
│ │ ├── 99.bmp
│ │ └── GraphicsCopyright
│ │ ├── AssemblyInfo.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── GraphicsCopyright.csproj
│ │ ├── GraphicsCopyright.csproj.user
│ │ ├── GraphicsCopyright.sln
│ │ ├── GraphicsCopyright.suo
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── GraphicsCopyright.Form1.resources
│ │ │ │ ├── GraphicsCopyright.exe.licenses
│ │ │ │ ├── GraphicsCopyright.pdb
│ │ │ │ ├── output.il
│ │ │ │ └── output.res
│ │ │ └── Release
│ │ │ └── GraphicsCopyright.exe
│ │ ├── licenses.licx
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── GraphicsCopyright.exe.incr
│ │ │ ├── GraphicsCopyright.pdb
│ │ │ ├── GraphicsCopyright.projdata
│ │ │ ├── TempPE
│ │ │ └── temp
│ │ └── Release
│ │ ├── GraphicsCopyright.Form1.resources
│ │ ├── GraphicsCopyright.exe
│ │ ├── GraphicsCopyright.exe.incr
│ │ ├── GraphicsCopyright.exe.licenses
│ │ ├── GraphicsCopyright.projdata
│ │ ├── TempPE
│ │ └── temp
│ └── 实例100 Brick Out
│ ├── 100.bmp
│ └── BrickOut
│ ├── AssemblyInfo.cs
│ ├── Ball.cs
│ ├── Brick.cs
│ ├── BrickOut.csproj
│ ├── BrickOut.csproj.user
│ ├── BrickOut.sln
│ ├── BrickOut.suo
│ ├── Form1.cs
│ ├── Form1.resx
│ ├── GameObject.cs
│ ├── Paddle.cs
│ ├── RevErr.txt
│ ├── Row.cs
│ ├── Score.cs
│ ├── SpeedDialog.cs
│ ├── SpeedDialog.resx
│ ├── bin
│ │ └── Debug
│ │ ├── BallOut.wav
│ │ ├── BrickHit.wav
│ │ ├── BrickOut.exe
│ │ ├── BrickOut.pdb
│ │ ├── PaddleHit.wav
│ │ ├── WallHit.wav
│ │ ├── ball.gif
│ │ ├── brick.gif
│ │ └── paddle.gif
│ ├── licenses.licx
│ └── obj
│ └── Debug
│ ├── BrickOut.Form1.resources
│ ├── BrickOut.SpeedDialog.resources
│ ├── BrickOut.exe
│ ├── BrickOut.exe.incr
│ ├── BrickOut.exe.licenses
│ ├── BrickOut.pdb
│ ├── BrickOut.projdata
│ ├── TempPE
│ └── temp
└── C#实例100个,非常全面,有GUI,线程,文件管理,网络等等。。。_c_example_programme.rar
558 directories, 1370 files
评论